Skip to main content
Version: 8.6.9.2

AtsDegrossMarketSummary

V8 Message Definiton

Published by the degrossing execution engine at each auction close. This is the PUBLIC post-auction disclosure — venue totals only, never per-client figures (per-order results are AtsDegrossRevConResult (2356)). The WTS merges these onto LiveGridDegrossMarket (6973) rows. Prices are PACKAGE space, like 2356/4030 — the book matches there; consumers rebase +strike for trader R/C display. Publish-only: no archive directives and .Archive() is never called.

METADATA

AttributeValue
Topic2270-execution-engine
MLink TokenClientTrading
ProductSRTrade
accessTypeSELECT
MLink EndpointMLink-Live

Table Definition

FieldTypeKeyDefault ValueComment
ticker_atenum - AssetTypePRI'None'underlier ticker
ticker_tsenum - TickerSrcPRI'None'underlier ticker
ticker_tkVARCHAR(12)PRI''underlier ticker
expiryDATEPRI'1900-01-01'flex option expiry date the market
tradeDateDATEPRI'1900-01-01'the trade date this summary is for
eventNumINT0auction sequence index AtsDegrossAuctionSchedule 2358 auctionNumber 1 Trial 25 Real
auctionDttmDATETIME(6)'1900-01-01 00:00:00.000000'auction cycle timestamp of the latest event
refUPrcDOUBLE0reference underlier price used
strikeDOUBLE0SRchosen strike
iDaysINT0interest days to expiry
clearingPriceDOUBLE0single clearing price at this event PACKAGE space 0 no cross
srClearingSDivDOUBLE0clearing SDIV using SR rate SR ddiv 0 no cross 0 with stateUnavailable inversion failed
matchedSizeINT0units crossed at this event Trial indicative nothing prints
imbalanceSideenum - BuySell'None'side of the residual imbalance after the event
imbalanceSizeINT0unmatched units on the imbalance side after the event
srClearingSDivStateenum - DegrossRateState'None'whether srClearingSDiv is a real inversion None no cross Ok valid a true 0 included Unavailable the clearing price has no admissible rate consumers must not read the 0 as zero carry
cumMatchedSizeINT0units crossed across the days Real events
cumMatchedCashDOUBLE0package cash crossed across the days Real events clearingPrice x units x 100
timestampDATETIME(6)'1900-01-01 00:00:00.000000'

PRIMARY KEY DEFINITION (Unique)

FieldSequence
ticker_tk1
ticker_at2
ticker_ts3
expiry4
tradeDate5

SELECT TABLE EXAMPLE QUERY

SELECT *
FROM `SRTrade`.`MsgAtsDegrossMarketSummary`
WHERE
/* Replace with a ENUM('None','EQT','IDX','BND','CUR','COM','FUT','SYN','WAR','FLX','MUT','SPD','MM','MF','COIN','TOKEN','ANY','RATE') */
`ticker_at` = 'None'
AND
/* Replace with a ENUM('None','SR','NMS','CME','ICE','CFE','CBOT','NYMEX','COMEX','RUT','CIDX','ARCA','NYSE','OTC','NSDQ','MFQS','MIAX','DJI','CUSIP','ISIN','BXE','SCE','ANY','CXE','DXE','NXAM','NXBR','NXLS','NXML','NXOS','NXP','EUREX','CEDX','ICEFEC','ICEFEF','CEQT','TSX','TMX') */
`ticker_ts` = 'None'
AND
/* Replace with a VARCHAR(12) */
`ticker_tk` = 'Example_ticker_tk'
AND
/* Replace with a DATE */
`expiry` = '2022-01-01'
AND
/* Replace with a DATE */
`tradeDate` = '2022-01-01';

Doc Columns Query

SELECT * FROM SRTrade.doccolumns WHERE TABLE_NAME='AtsDegrossMarketSummary' ORDER BY ordinal_position ASC;